1   /*
2    * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
3    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4    *
5    * This code is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU General Public License version 2 only, as
7    * published by the Free Software Foundation.  Oracle designates this
8    * particular file as subject to the "Classpath" exception as provided
9    * by Oracle in the LICENSE file that accompanied this code.
10   *
11   * This code is distributed in the hope that it will be useful, but WITHOUT
12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14   * version 2 for more details (a copy is included in the LICENSE file that
15   * accompanied this code).
16   *
17   * You should have received a copy of the GNU General Public License version
18   * 2 along with this work; if not, write to the Free Software Foundation,
19   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20   *
21   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22   * or visit www.oracle.com if you need additional information or have any
23   * questions.
24   */
25  
26  /*
27   *******************************************************************************
28   * (C) Copyright IBM Corp. 1996-2003 - All Rights Reserved                     *
29   *                                                                             *
30   * The original version of this source code and documentation is copyrighted   *
31   * and owned by IBM, These materials are provided under terms of a License     *
32   * Agreement between IBM and Sun. This technology is protected by multiple     *
33   * US and International patents. This notice and attribution to IBM may not    *
34   * to removed.                                                                 *
35   *******************************************************************************
36   *
37   * This locale data is based on the ICU's Vietnamese locale data (rev. 1.38)
38   * found at:
39   *
40   * http://oss.software.ibm.com/cvs/icu/icu/source/data/locales/vi.txt?rev=1.38
41   */
42  
43  package sun.text.resources;
44  
45  import java.util.ListResourceBundle;
46  
47  public class FormatData_vi extends ListResourceBundle {
48      /**
49       * Overrides ListResourceBundle
50       */
51      protected final Object[][] getContents() {
52          return new Object[][] {
53              { "MonthNames",
54                  new String[] {
55                      "th\u00e1ng m\u1ed9t", // january
56                      "th\u00e1ng hai", // february
57                      "th\u00e1ng ba", // march
58                      "th\u00e1ng t\u01b0", // april
59                      "th\u00e1ng n\u0103m", // may
60                      "th\u00e1ng s\u00e1u", // june
61                      "th\u00e1ng b\u1ea3y", // july
62                      "th\u00e1ng t\u00e1m", // august
63                      "th\u00e1ng ch\u00edn", // september
64                      "th\u00e1ng m\u01b0\u1eddi", // october
65                      "th\u00e1ng m\u01b0\u1eddi m\u1ed9t", // november
66                      "th\u00e1ng m\u01b0\u1eddi hai", // december
67                      "" // month 13 if applicable
68                  }
69              },
70              { "MonthAbbreviations",
71                  new String[] {
72                      "thg 1", // abb january
73                      "thg 2", // abb february
74                      "thg 3", // abb march
75                      "thg 4", // abb april
76                      "thg 5", // abb may
77                      "thg 6", // abb june
78                      "thg 7", // abb july
79                      "thg 8", // abb august
80                      "thg 9", // abb september
81                      "thg 10", // abb october
82                      "thg 11", // abb november
83                      "thg 12", // abb december
84                      "" // abb month 13 if applicable
85                  }
86              },
87              { "DayNames",
88                  new String[] {
89                      "Ch\u1ee7 nh\u1eadt", // Sunday
90                      "Th\u1ee9 hai", // Monday
91                      "Th\u1ee9 ba",  // Tuesday
92                      "Th\u1ee9 t\u01b0", // Wednesday
93                      "Th\u1ee9 n\u0103m", // Thursday
94                      "Th\u1ee9 s\u00e1u", // Friday
95                      "Th\u1ee9 b\u1ea3y" // Saturday
96                  }
97              },
98              { "DayAbbreviations",
99                  new String[] {
100                     "CN", // abb Sunday
101                     "Th 2", // abb Monday
102                     "Th 3", // abb Tuesday
103                     "Th 4", // abb Wednesday
104                     "Th 5", // abb Thursday
105                     "Th 6", // abb Friday
106                     "Th 7" // abb Saturday
107                 }
108             },
109             { "AmPmMarkers",
110                 new String[] {
111                     "SA", // am marker
112                     "CH" // pm marker
113                 }
114             },
115             { "Eras",
116                 new String[] { // era strings
117                     "tr. CN",
118                     "sau CN"
119                 }
120             },
121             { "NumberElements",
122                 new String[] {
123                     ",", // decimal separator
124                     ".", // group (thousands) separator
125                     ";", // list separator
126                     "%", // percent sign
127                     "0", // native 0 digit
128                     "#", // pattern digit
129                     "-", // minus sign
130                     "E", // exponential
131                     "\u2030", // per mille
132                     "\u221e", // infinity
133                     "\ufffd" // NaN
134                 }
135             },
136             { "DateTimePatterns",
137                 new String[] {
138                     "HH:mm:ss z", // full time pattern
139                     "HH:mm:ss z", // long time pattern
140                     "HH:mm:ss", // medium time pattern
141                     "HH:mm", // short time pattern
142                     "EEEE, 'ng\u00E0y' dd MMMM 'n\u0103m' yyyy", // full date pattern
143                     "'Ng\u00E0y' dd 'th\u00E1ng' M 'n\u0103m' yyyy", // long date pattern
144                     "dd-MM-yyyy", // medium date pattern
145                     "dd/MM/yyyy", // short date pattern
146                     "{0} {1}" // date-time pattern
147                 }
148             },
149         };
150     }
151 }